home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 57131 / 57131.xpi / chrome / beefree.jar / content / beefree / about.xul next >
Encoding:
Extensible Markup Language  |  2010-01-25  |  2.0 KB  |  60 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <!--
  4. <window class="dialog"
  5.     title="Bee Free - About"
  6.     orient="vertical"
  7.     autostretch="always"
  8.     onload="sizeToContent()"
  9.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  10. -->
  11. <dialog buttons="accept"
  12.     id="beefree-about-dialog"
  13.     title="Bee Free - About"
  14.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  15.  
  16. <script type="application/x-javascript"><![CDATA[
  17. function beefree_GUI_super_honey_bee_close()
  18. {
  19.     window.close();
  20. }
  21. function beefree_GUI_super_honey_bee_url()
  22. {
  23.     var url = "http://honeybeenet.altervista.org";
  24.     window.open(url);
  25. }
  26. function beefree_GUI_super_honey_bee_about()
  27. {
  28.     beefree_GUI_super_honey_bee_url();
  29.     beefree_GUI_super_honey_bee_close();
  30. }
  31. ]]>
  32. </script>
  33. <groupbox flex="1" style="background-color: #f3e290; margin: 26px; padding: 0;" align="center" orient="vertical"><!-- -->
  34.     <groupbox flex="1" align="center" orient="horizontal"><!---->
  35.         <vbox>
  36.             <text value="Bee Free" style="font-weight: bold; font-size: x-large; color: #ff9900;"/>
  37.             <separator class="thin"/>
  38.             <text value="Created By" style="font-weight: bold; color: #663400;"/>
  39.             <text value="Bee" class="url"
  40.                 onclick="beefree_GUI_super_honey_bee_about();"/>
  41.             <separator class="thin"/>
  42.             <text value="Home Page" style="font-weight: bold; color: #663400;"/>
  43.             <text value="http://honeybeenet.altervista.org"
  44.                 class="url"
  45.                 onclick="beefree_GUI_super_honey_bee_about();"/>
  46.             <text value=" "/>
  47.             <text value="Thank you for using BeeFREE!!!!" style="font-style: italic; color: #7e8d0c;" />
  48.             <separator class="thin"/>
  49.         </vbox>
  50.     </groupbox>
  51.     <!--
  52.     <hbox>
  53.         <button label="Close" oncommand="window.close();"/>
  54.     </hbox>
  55.     -->
  56. </groupbox>
  57. <!--</window>-->
  58. </dialog>
  59.  
  60.